home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / boxes / demo2 / aboutbox.bas next >
BASIC Source File  |  1995-03-30  |  6KB  |  145 lines

  1. Option Explicit
  2. ' Any program that includes this file must also include ABOUTBOX.TXT
  3. ' and ABOUTBOX.FRX
  4. ' The AB_NO_xxxx constants are used to exclude informational lines
  5. ' from the About Box display.  You pass one or more of them, combined
  6. ' using OR, as the last parameter to DisplayAboutBox.
  7. Global Const AB_NO_USER = &H1
  8. Global Const AB_NO_COMPANY = &H2
  9. Global Const AB_NO_WINVER = &H4
  10. Global Const AB_NO_DOSVER = &H8
  11. Global Const AB_NO_WINMODE = &H10
  12. Global Const AB_NO_MEMORY = &H20
  13. Global Const AB_NO_80x87 = &H40
  14. Global Const AB_NO_FSR = &H80
  15.  
  16. Global Excl% ' Global variable holds bit flags for excluded items.
  17.  
  18. ' GetSystemMetrics returns the size (in pixels) of various on-screen
  19. ' items.  There are many more SM_xxxx constants besides those defined
  20. ' below.  The About Box uses the sizes to set its position on screen.
  21. Declare Function GetSystemMetrics% Lib "User" (ByVal nIndex%)
  22. Global Const SM_CYCAPTION = &H4
  23. Global Const SM_CYMENU = &HF
  24. Global Const SM_CXSIZE = &H1F
  25.  
  26. ' API functions used in getting user and company name
  27. Declare Function LoadLibrary% Lib "Kernel" (ByVal LibFileName$)
  28. Declare Sub FreeLibrary Lib "Kernel" (ByVal hInst%)
  29. Declare Function LoadString% Lib "User" (ByVal hInst%, ByVal idResource%, ByVal Buffer$, ByVal cBuffer%)
  30.  
  31. ' GetVersion returns both Windows and DOS versions
  32. Declare Function GetVersion& Lib "Kernel" ()
  33.  
  34. ' GetWinFlags returns a Long that's filled with bit-flags providing
  35. ' information about Windows.  We use only 3 of its 13 flags
  36. Declare Function GetWinFlags& Lib "Kernel" ()
  37. Global Const WF_PMODE = &H1
  38. Global Const WF_ENHANCED = &H20
  39. Global Const WF_80x87 = &H400
  40.  
  41. ' GetFreeSpace returns the amount of free memory
  42. Declare Function GetFreeSpace& Lib "Kernel" (ByVal wFlags%)
  43.  
  44. ' Free System Resources are a special kind of memory that can run out
  45. ' before your main memory runs out.
  46. Declare Function GetFreeSystemResources% Lib "User" (ByVal fuSysResource%)
  47. Global Const GFSR_SYSTEMRESOURCES = 0
  48. Global Const GFSR_GDIRESOURCES = 1
  49. Global Const GFSR_USERRESOURCES = 2
  50.  
  51. Sub DisplayAboutBox (F As Form, ByVal ProgName$, ByVal Version, ByVal CoprDate, ByVal CoprName$, ByVal Ex1$, ByVal Ex2$, ByVal Exclude%, ByVal Center%, ByVal Fore&, ByVal Back&)
  52. 'Your program simply calls this function to display an about box.
  53. 'F         - the main form of the calling program, used to get an
  54. '            icon for display and to position the about box.
  55. 'ProgName  - program name, for caption and first line
  56. 'Version   - version number, displayed as 0.00
  57. 'CoprDate  - copyright year
  58. 'CoprName  - copyright holder's name
  59. 'Ex1       - extra data line 1 (optional)
  60. 'Ex2       - extra data line 2 (optional)
  61. 'Exclude   - used to exclude info from the about box.  AB_NO_xxxx
  62. '            constants are bit-flags for this parameter.  e.g. to
  63. '            exclude displaying DOS & Windows versions, pass
  64. '            AB_NO_DOSVER OR AB_NO_WINVER
  65. 'Center    - if TRUE, About box is centered on screen; if FALSE, About
  66. '            box is displayed offset from calling window.
  67. 'Fore,Back - foreground and background colors for box; 0 to use default
  68.   Excl = Exclude
  69.   Load FAB
  70.   Dim N%
  71.   If Fore Then
  72.     FAB.ForeColor = Fore
  73.     FAB.CoprLabel.ForeColor = Fore
  74.     FAB.MyInfoLabel.ForeColor = Fore
  75.     FAB.NameLabel.ForeColor = Fore
  76.     For N = 0 To 14
  77.       FAB.OptLabel(N).ForeColor = Fore
  78.     Next N
  79.     FAB.Shape1.BorderColor = Fore
  80.   End If
  81.   If Back Then
  82.     FAB.BackColor = Back
  83.     FAB.CommandOK.BackColor = Back
  84.     FAB.CoprLabel.BackColor = Back
  85.     FAB.IconPicture.BackColor = Back
  86.     FAB.NameLabel.BackColor = Back
  87.     FAB.MyInfoLabel.BackColor = Back
  88.     FAB.Shape1.FillColor = Back
  89.     For N = 0 To 14
  90.       FAB.OptLabel(N).BackColor = Back
  91.     Next N
  92.   End If
  93.   If Center Then
  94.     FAB.Left = (Screen.Width - FAB.Width) \ 2
  95.     FAB.Top = (Screen.Height - FAB.Height) \ 2
  96.   Else
  97.     ' Place the About box over the calling window, offset downward
  98.     ' and to the right
  99.     Dim Tmp% ' variable to keep lines of code from becoming TOO long
  100.     Tmp = GetSystemMetrics(SM_CXSIZE)
  101.     FAB.Left = F.Left + Tmp * Screen.TwipsPerPixelX
  102.     Tmp = GetSystemMetrics(SM_CYCAPTION) + GetSystemMetrics(SM_CYMENU)
  103.     FAB.Top = F.Top + Tmp * Screen.TwipsPerPixelY
  104.     ' If about box now extends off the screen, move it back ON
  105.     If FAB.Left + FAB.Width > Screen.Width Then
  106.       FAB.Left = Screen.Width - (FAB.Width + 30)
  107.     End If
  108.     If FAB.Top + FAB.Height > Screen.Height Then
  109.       FAB.Top = Screen.Height - (FAB.Height + 30)
  110.     End If
  111.   End If
  112.   FAB.IconPicture.Picture = F.Icon
  113.   FAB.Caption = "About " + ProgName$
  114.   Dim Temp$ ' variable to keep lines of code from becoming TOO long
  115.   Temp = ProgName$ + ", Version " + Format$(Version, "0.00")
  116.   FAB.NameLabel.Caption = Temp
  117.   Temp = "Copyright ⌐ " + CoprDate + " by " + CoprName
  118.   FAB.CoprLabel.Caption = Temp
  119.   If Ex1 = "" Then
  120.     EliminateLabel 0
  121.   Else
  122.     FAB.OptLabel(0).Caption = Ex1
  123.   End If
  124.   If Ex2 = "" Then
  125.     EliminateLabel 1
  126.   Else
  127.     FAB.OptLabel(1).Caption = Ex2
  128.   End If
  129.   FAB.Show
  130. End Sub
  131.  
  132. Sub EliminateLabel (ByVal Which%)
  133.   ' If one of the informational labels in the about box is not wanted,
  134.   ' make it invisible and move all the other labels up to fill in the
  135.   ' space.  Then shrink the form as well.
  136.   FAB.OptLabel(Which).Visible = False
  137.   Dim N%, H%
  138.   H = FAB.OptLabel(0).Height
  139.   For N = Which + 1 To 14
  140.     FAB.OptLabel(N).Top = FAB.OptLabel(N).Top - H
  141.   Next N
  142.   FAB.Height = FAB.Height - H
  143. End Sub
  144.  
  145.